Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

244
Views
Autodesk Design Automation "Value cannot be null. (Parameter 'ForgeConfiguration.ClientId')"

I´ve downloaded the Forge Design Automation sample from the following link:

https://learnforge.autodesk.io/#/tutorials/modifymodels

But the downloable code example is not working fine. When any async method who involves the DesignAutomation API is called I get -> Value cannot be null. (Parameter 'ForgeConfiguration.ClientId'). So, I would like to know how it works and how I can set the ClientId in the ForgeConfiguration class or else if I making something else wrong. I attach a fragment of code where I get the error.

 [HttpGet]
 [Route("api/forge/designautomation/engines")]
 public async Task<List<string>> GetAvailableEngines()
    {
       
        List<string> allEngines = new List<string>();
        try
        {
            dynamic oauth = await OAuthController.GetInternalAsync();

            // define Engines API
            string paginationToken = null;
            while (true)
            {
                Page<string> engines = await _designAutomation.GetEnginesAsync(paginationToken);
                allEngines.AddRange(engines.Data);
                if (engines.PaginationToken == null)
                    break;
                paginationToken = engines.PaginationToken;
            }
            allEngines.Sort();
        }
        catch (Exception error) {
            throw error;
        }
       
        return allEngines; // return list of engines
    }

And the call of the method:

function prepareLists() {
    
    list('engines', 'api/forge/designautomation/engines');
   
}
function list(control, endpoint) {
$('#' + control).find('option').remove().end();
jQuery.ajax({
    url: endpoint,
    success: function (list) {
        if (list.length === 0)
            $('#' + control).append($('<option>', { disabled: true, text: 'Nothing found' }));
        else
            list.forEach(function (item) { $('#' + control).append($('<option>', { value: item, text: item })); })
    }
});

}

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Did you forget to set the Forge App Keys in the Environment Variables of your project, check the page at https://learnforge.autodesk.io/#/environment/setup/netcore_da

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!